1 package com.fc.taglibs.castor;
2
3 /***
4 * This interface is implemented by all tags that
5 * can start Castor transactions
6 * i.e. by calling db.begin();
7 * Thus, tags nested within this tag can
8 * join an existing transaction by
9 * retrieving the database object
10 * from the transaction initiator.
11 */
12
13 import org.exolab.castor.jdo.Database;
14
15 public interface CastorTransactionInitiator
16 {
17 public Database getDatabase();
18 //public boolean isTransactionInitiator();
19 }
This page was automatically generated by Maven